-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
PERF: ExpandingGroupby #37064
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PERF: ExpandingGroupby #37064
Conversation
@@ -302,7 +302,7 @@ cdef inline float64_t calc_var(int64_t minp, int ddof, float64_t nobs, | |||
result = ssqdm_x / (nobs - <float64_t>ddof) | |||
# Fix for numerical imprecision. | |||
# Can be result < 0 once Kahan Summation is implemented | |||
if result < 1e-15: | |||
if result < 1e-14: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
xref #37051, needed to change for an expanding groupby test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we expose the GroupIndexer in pandas.api.indexers? (if not then this is not public yet)
No. I don't think GroupByIndexer should be public though |
great thanks |
black pandas
git diff upstream/master -u -- "*.py" | flake8 --diff